By the end of this session, you should be able to:
In this workshop, we will use RStudio via the web.
Never hardcode a working directory again!
Create a new R script file
Create a new RMarkdown HTML file
Plain text, *italics*, **bold**, `monospaced font`
~~strikethrough~~, sub/superscript^2^~2~, endash: --, emdash: ---
equation: $A = \pi*r^{2}$
$$E = mc^{2}$$
> block quote
list:
* item 1
* item 2
* item 3Plain text, italics, bold, monospaced font
strikethrough, sub/superscript22, endash: –, emdash: —
equation: \(A = \pi*r^{2}\)
\[E = mc^{2}\]
block quote
list:
x <- c(4, 2, 6, 9, 2, 5, 4, 3, 7, 6, 8, 4, 7, 2, NA, 3)
x_mean <- mean(x)
x_mean## [1] NA
?mean